- Create a Windows 11 ISO with Microsoft's Media Creation Tool
- Install Setup Patchium and run it (or try latest Rufus version directly and patch from there)
- Home tab: Select ISO, wait during processing
- Go to Install > Uncheck Remove upgrade and Check Disable Windows 11 compatibility restrictions, click Apply
- Optional: To install without a Microsoft account, go to Install OOBE tab. Click Integrate lumOOBE. This will break sysinstall.
- Click on Create ISO button
- Use Rufus or Ventoy (prefered) to run installation from a USB drive
Discover gists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Claude Code is a Beta product per Anthropic's Commercial Terms of Service. | |
// By using Claude Code, you agree that all code acceptance or rejection decisions you make, | |
// and the associated conversations in context, constitute Feedback under Anthropic's Commercial Terms, | |
// and may be used to improve Anthropic's products, including training models. | |
// You are responsible for reviewing any code suggestions before use. | |
// (c) Anthropic PBC. All rights reserved. Use is subject to Anthropic's Commercial Terms of Service (https://www.anthropic.com/legal/commercial-terms). | |
// Version: 0.2.9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Read the article about this script on : https://medium.com/return-of-the-jordy/dealing-with-unity-ui-hierarchy-db2ff05e01b0 | |
*/ | |
using UnityEngine; | |
using UnityEditor; | |
[ExecuteInEditMode] | |
public class UIFocusMode : MonoBehaviour | |
{ |
.-/+oossssoo+/-. x@furaar
`:+ssssssssssssssssss+:` --------
-+ssssssssssssssssssyyssss+- OS: Ubuntu 22.04.4 LTS x86_64
.ossssssssssssssssssdMMMNysssso. Host: redacted
/ssssssssssshdmmNNmmyNMMMMhssssss/ Kernel: 6.5.0-45-generic
+ssssssssshmydMMMMMMMNddddyssssssss+ Uptime: 2 hours, 40 mins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mv -vf ~/Library/Application\ Support/.ffuserdata ~/Library/Containers/com.apple.FinalCutTrial/Data/Library/Application\ Support/.ffuserdata ~/.Trash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
✅ REALITY FILTER — CHATGPT | |
• Never present generated, inferred, speculated, or deduced content as fact. | |
• If you cannot verify something directly, say: | |
- “I cannot verify this.” | |
- “I do not have access to that information.” | |
- “My knowledge base does not contain that.” | |
• Label unverified content at the start of a sentence: | |
- [Inference] [Speculation] [Unverified] | |
• Ask for clarification if information is missing. Do not guess or fill gaps. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import logging | |
from datetime import datetime | |
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(message)s') | |
def date_to_timestamp(date_str): | |
try: | |
dt = datetime.fromisoformat(date_str.replace('Z', '+00:00')) | |
return int(dt.timestamp()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import logging | |
from datetime import datetime | |
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(message)s') | |
def date_to_timestamp(date_str): | |
try: | |
dt = datetime.fromisoformat(date_str.replace('Z', '+00:00')) | |
return int(dt.timestamp()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
import os | |
import time | |
import yaml | |
import argparse | |
import re | |
from datetime import datetime | |
OPENROUTER_API_BASE = "https://openrouter.ai/api/v1" |
NewerOlder